@keyframes Magic {
	0% { left: calc(100% - 180px); bottom: calc(100% - 50px); width: 20px; height: 20px; transform: rotate(0deg); }
	30% { bottom: calc(100% - 50px); }
	100% { left: 292px; bottom: 75px; width: 100px; height: 150px; transform: rotate(-1080deg); }
}
   
@-webkit-keyframes Magic {
	0% { left: calc(100% - 180px); bottom: calc(100% - 50px); width: 20px; height: 20px; }
	30% { bottom: calc(100% - 50px); }
	100% { left: 292px; bottom: 75px; width: 100px; height: 150px; -webkit-transform: rotate(-1080deg); }
}

@media only screen and (max-width: 1366px) {
	@keyframes Magic {
		0% { left: calc(100% - 142px); bottom: calc(100% - 50px); width: 20px; height: 20px; transform: rotate(0deg); }
		30% { bottom: calc(100% - 50px); }
		100% { left: 292px; bottom: 75px; width: 100px; height: 150px; transform: rotate(-1080deg); }
	}
	@-webkit-keyframes Magic {
		0% { left: calc(100% - 142px); bottom: calc(100% - 50px); width: 20px; height: 20px; }
		30% { bottom: calc(100% - 50px); }
		100% { left: 292px; bottom: 75px; width: 100px; height: 150px; -webkit-transform: rotate(-1080deg); }
	}
}